LET

Syntax:

LET a#$ = b#$

Assigns the value of b#$ to the variable of a#$. Words are converted to numbers if possible and vice versa. This command can be left at all.

Sample:

LET a=5; // Or simply    a=5
LET b=a+3 // Or simply b=a+3
PRINT a, 100, 100
PRINT b, 100, 150
SHOWSCREEN
MOUSEWAIT